home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 7043 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.3 KB

  1. Path: lrz-muenchen.de!news
  2. From: watzka@stat.uni-muenchen.de (Kurt Watzka)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Function pointers; example code
  5. Date: 17 Feb 1996 18:48:51 GMT
  6. Organization: Leibniz-Rechenzentrum, Muenchen (Germany)
  7. Distribution: world
  8. Message-ID: <4g57uj$9iq@sparcserver.lrz-muenchen.de>
  9. References: <DMwzBL.HDt@ichaos.nullnet.fi>
  10. NNTP-Posting-Host: sun2.lrz-muenchen.de
  11.  
  12. jlaiho@ichaos.nullnet.fi (Juha Laiho) writes:
  13.  
  14. >Here's a short program I wrote as an example of function pointers. I'd
  15. >appreciate _any_ comments about it.
  16.  
  17. >---SNIP---
  18. >#include <stdio.h>
  19.  
  20. >typedef void f(int); /* f is a type that is a function taking one int
  21. >                      * argument and returning an int
  22. >                      */
  23.  
  24. No, it is a function taking one int argument and returning nothing,
  25. hence the "void" in front of the "f".
  26.  
  27. >typedef f *ptf;      /* ptf is a type that is a pointer to a function */
  28. >typedef ptf aptf[];  /* aptf is a type that is an array of ptfs */
  29.  
  30. >f a, b, c; /* Define three functions a, b and c; each is 'void f(int)' */
  31.  
  32. You did not define them, but you declared them.
  33.  
  34. [code that defined main and a, b, and c edited]
  35.  
  36. Kurt
  37. --
  38. | Kurt Watzka                             Phone : +49-89-2180-6254
  39. | watzka@stat.uni-muenchen.de
  40. | ua302aa@sunmail.lrz-muenchen.de
  41.